home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / painte1a / frmdocum.frm (.txt) < prev    next >
Visual Basic Form  |  1999-09-09  |  1KB  |  40 lines

  1. VERSION 5.00
  2. Begin VB.Form frmDocument 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "frmDocument"
  5.    ClientHeight    =   3195
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   4680
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MDIChild        =   -1  'True
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   3195
  14.    ScaleWidth      =   4680
  15.    Begin VB.PictureBox picBoard 
  16.       AutoRedraw      =   -1  'True
  17.       BackColor       =   &H80000009&
  18.       Height          =   3090
  19.       Left            =   60
  20.       MousePointer    =   99  'Custom
  21.       ScaleHeight     =   3030
  22.       ScaleWidth      =   4515
  23.       TabIndex        =   0
  24.       Top             =   60
  25.       Width           =   4575
  26.    End
  27. Attribute VB_Name = "frmDocument"
  28. Attribute VB_GlobalNameSpace = False
  29. Attribute VB_Creatable = False
  30. Attribute VB_PredeclaredId = True
  31. Attribute VB_Exposed = False
  32. Private Sub Form_Load()
  33.     Form_Resize
  34. End Sub
  35. Private Sub Form_Resize()
  36.     On Error Resume Next
  37.     Picture1.Move 100, 100, Me.ScaleWidth - 200, Me.ScaleHeight - 200
  38.     Picture1.RightMargin = rtfText.Width - 400
  39. End Sub
  40.